From 3cf26b471ba5045ee8e0347cbbf2eff184de4a43 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sun, 1 Nov 2020 11:27:22 -0500 Subject: [PATCH] Fix the definition of GtkWidget:can-target We are setting the value to TRUE initially, but the property had a declared default of FALSE. This is messing up the simplification of .ui files with gtk4-builder-tool, since it thinks it can omit can-target properties when it really can't. --- gtk/gtkwidget.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkwidget.c b/gtk/gtkwidget.c index f9bc34a969..31c0063022 100644 --- a/gtk/gtkwidget.c +++ b/gtk/gtkwidget.c @@ -1013,7 +1013,7 @@ gtk_widget_class_init (GtkWidgetClass *klass) g_param_spec_boolean ("can-target", P_("Can target"), P_("Whether the widget can receive pointer events"), - FALSE, + TRUE, GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY); /** -- 2.30.2